home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / dev / devRawBlockDev.c < prev    next >
C/C++ Source or Header  |  1992-12-18  |  9KB  |  320 lines

  1. /* 
  2.  * devRawBlockDev.c --
  3.  *
  4.  *    Routines for providing the Raw open/close/read/write/ioctl on 
  5.  *    Block Devices. The routines in this file are called though the
  6.  *     file system device switch table.
  7.  *
  8.  * Copyright 1989 Regents of the University of California
  9.  * Permission to use, copy, modify, and distribute this
  10.  * software and its documentation for any purpose and without
  11.  * fee is hereby granted, provided that the above copyright
  12.  * notice appear in all copies.  The University of California
  13.  * makes no representations about the suitability of this
  14.  * software for any purpose.  It is provided "as is" without
  15.  * express or implied warranty.
  16.  */
  17.  
  18. #ifndef lint
  19. static char rcsid[] = "$Header: /cdrom/src/kernel/Cvsroot/kernel/dev/devRawBlockDev.c,v 9.5 92/03/20 13:47:45 jhh Exp $ SPRITE (Berkeley)";
  20. #endif /* not lint */
  21.  
  22. #include <sprite.h>
  23. #include <stdio.h>
  24. #include <status.h>
  25. #include <rawBlockDev.h>
  26. #include <devBlockDevice.h>
  27. #include <dev.h>
  28. #include <devInt.h>
  29. #include <fs.h>
  30. #include <user/fs.h>
  31.  
  32.  
  33. /*
  34.  *----------------------------------------------------------------------
  35.  *
  36.  * DevRawBlockDevOpen --
  37.  *
  38.  *    Open a Block Device as a file for reads and writes.  Modify the
  39.  *    Fs_Device structure to point at the attached device's handle.
  40.  *
  41.  * Results:
  42.  *    SUCCESS if the device is successfully attached.
  43.  *
  44.  * Side effects:
  45.  *    None.
  46.  *
  47.  *----------------------------------------------------------------------
  48.  */
  49. /* ARGSUSED */
  50. ReturnStatus
  51. DevRawBlockDevOpen(devicePtr, useFlags, token, flagsPtr)
  52.     Fs_Device *devicePtr;    /* Device info, unit number etc. */
  53.     int useFlags;        /* Flags from the stream being opened */
  54.     Fs_NotifyToken token;    /* Call-back token for input, unused here */
  55.     int        *flagsPtr;    /* OUT: Device IO flags. */
  56. {
  57.     DevBlockDeviceHandle *handlePtr;
  58.  
  59.     /*
  60.      * See if the device was already open by someone else. NOTE: The 
  61.      * file system passes us the same Fs_Device for each open and initalizes
  62.      * the clientData field to NIL on the first call. 
  63.      */
  64.     handlePtr =  (DevBlockDeviceHandle *) devicePtr->data;
  65.     if (handlePtr != (DevBlockDeviceHandle *) NIL) {
  66.     /*
  67.      * Block devices handle their own locking.
  68.      */
  69.     *flagsPtr |= FS_DEV_DONT_LOCK;
  70.     /*
  71.      * Already attached. 
  72.      */
  73.     return (SUCCESS);
  74.     }
  75.     /*
  76.      * If the device is not already attach, attach it. This will fail if the 
  77.      * device doesn't exists or is not functioning correctly.
  78.      */
  79.     handlePtr = Dev_BlockDeviceAttach(devicePtr);
  80.     if (handlePtr == (DevBlockDeviceHandle *) NIL) {
  81.     return(DEV_NO_DEVICE);
  82.     }
  83.     devicePtr->data = (ClientData) handlePtr;
  84.     /*
  85.      * Block devices handle their own locking.
  86.      */
  87.     *flagsPtr |= FS_DEV_DONT_LOCK;
  88.     return(SUCCESS);
  89. }
  90.  
  91. /*
  92.  *----------------------------------------------------------------------
  93.  *
  94.  * DevRawBlockDevReopen --
  95.  *
  96.  *    Reopen a Block Device as a file for reads and writes.
  97.  *    This calls the regular open procedure to do all the work.
  98.  *
  99.  * Results:
  100.  *    SUCCESS if the device is successfully attached.
  101.  *
  102.  * Side effects:
  103.  *    None.
  104.  *
  105.  *----------------------------------------------------------------------
  106.  */
  107. /* ARGSUSED */
  108. ReturnStatus
  109. DevRawBlockDevReopen(devicePtr, refs, writers, token, flagsPtr)
  110.     Fs_Device *devicePtr;    /* Device info, unit number etc. */
  111.     int refs;            /* Number of open streams */
  112.     int writers;        /* Number of writing streams */
  113.     Fs_NotifyToken token;    /* Call-back token for input, unused here */
  114.     int    *flagsPtr;        /* OUT: Device IO flags. */
  115. {
  116.     int useFlags = FS_READ;
  117.  
  118.     if (writers) {
  119.     useFlags |= FS_WRITE;
  120.     }
  121.     return( DevRawBlockDevOpen(devicePtr, useFlags, token, flagsPtr) );
  122. }
  123.  
  124.  
  125. /*
  126.  *----------------------------------------------------------------------
  127.  *
  128.  * DevRawBlockDevRead --
  129.  *
  130.  *    Read from a raw Block Device. 
  131.  *
  132.  * Results:
  133.  *    The Sprite return status of the read.
  134.  *
  135.  * Side effects:
  136.  *    None.
  137.  *
  138.  *----------------------------------------------------------------------
  139.  */
  140. ReturnStatus
  141. DevRawBlockDevRead(devicePtr, readPtr, replyPtr)
  142.     Fs_Device *devicePtr;    /* Handle for raw Block device */
  143.     Fs_IOParam    *readPtr;    /* Read parameter block */
  144.     Fs_IOReply    *replyPtr;    /* Return length and signal */ 
  145. {
  146.     ReturnStatus error;
  147.     DevBlockDeviceRequest    request;
  148.     DevBlockDeviceHandle    *handlePtr;
  149.     int                amountRead;
  150.     int                toRead;
  151.  
  152.     /*
  153.      * Extract the BlockDeviceHandle from the Fs_Device and sent a 
  154.      * BlockDeviceRequest READ request using the synchronous
  155.      * Block IO interface. If the request is too large break it into
  156.      * smaller pieces. Insure the request to a multiple of the min
  157.      * blocksize.
  158.      */
  159.     handlePtr = (DevBlockDeviceHandle *) (devicePtr->data);
  160.     if ((readPtr->offset % (handlePtr->minTransferUnit)) || 
  161.     (readPtr->length % (handlePtr->minTransferUnit))) {
  162.     replyPtr->length = 0;
  163.     printf("DevRawBlockDevRead: Non-aligned read, %d bytes at %d\n",
  164.         readPtr->length, readPtr->offset);
  165.     return DEV_INVALID_ARG;
  166.     }
  167.  
  168.     amountRead = 0;
  169.     error = FAILURE;
  170.     while (readPtr->length > 0) {
  171.     /*
  172.      * Reinitialize everything each loop because lower-levels
  173.      * might trash operation or startAddrHigh for their own reasons.
  174.      */
  175.     request.operation = FS_READ;
  176.     request.startAddrHigh = 0;
  177.     request.startAddress = readPtr->offset + amountRead;
  178.     request.buffer = readPtr->buffer + amountRead;
  179.     toRead = (readPtr->length > handlePtr->maxTransferSize) ?
  180.           handlePtr->maxTransferSize : readPtr->length;
  181.     request.bufferLen = toRead;
  182.     error = Dev_BlockDeviceIOSync(handlePtr, &request, &replyPtr->length);
  183.     amountRead += replyPtr->length;
  184.     readPtr->length -= replyPtr->length;
  185.     if ((error != SUCCESS) || (replyPtr->length != toRead)) {
  186.         return error;
  187.     }
  188.     }
  189.     replyPtr->length = amountRead;
  190.     return error;
  191. }
  192.  
  193. /*
  194.  *----------------------------------------------------------------------
  195.  *
  196.  * DevRawBlockDevWrite --
  197.  *
  198.  *    Write to a raw Block Device.
  199.  *
  200.  * Results:
  201.  *    The return status of the IO.
  202.  *
  203.  * Side effects:
  204.  *    None.
  205.  *
  206.  *----------------------------------------------------------------------
  207.  */
  208. ReturnStatus
  209. DevRawBlockDevWrite(devicePtr, writePtr, replyPtr)
  210.     Fs_Device *devicePtr;    /* Handle of raw disk device */
  211.     Fs_IOParam    *writePtr;    /* Standard write parameter block */
  212.     Fs_IOReply    *replyPtr;    /* Return length and signal */
  213. {
  214.     ReturnStatus         error;    
  215.     DevBlockDeviceRequest    request;
  216.     DevBlockDeviceHandle    *handlePtr;
  217.     int                amountWritten;
  218.     int                toWrite;
  219.     /*
  220.      * Extract the BlockDeviceHandle from the Fs_Device and sent a 
  221.      * BlockDeviceRequest WRITE request using the synchronous
  222.      * Block IO interface.
  223.      */
  224.  
  225.     handlePtr = (DevBlockDeviceHandle *) (devicePtr->data);
  226.     if ((writePtr->offset % (handlePtr->minTransferUnit)) || 
  227.     (writePtr->length % (handlePtr->minTransferUnit))) {
  228.     replyPtr->length = 0;
  229.     return DEV_INVALID_ARG;
  230.     }
  231.     amountWritten = 0;
  232.     error = SUCCESS;
  233.     while (writePtr->length > 0) {
  234.     /*
  235.      * Reinitialize everything each loop because lower-levels
  236.      * might trash operation or startAddrHigh for their own reasons.
  237.      */
  238.     request.operation = FS_WRITE;
  239.     request.startAddrHigh = 0;
  240.     request.startAddress = writePtr->offset + amountWritten;
  241.     request.buffer = writePtr->buffer + amountWritten;
  242.     toWrite = (writePtr->length > handlePtr->maxTransferSize) ?
  243.            handlePtr->maxTransferSize : writePtr->length;
  244.     request.bufferLen = toWrite;
  245.     error = Dev_BlockDeviceIOSync(handlePtr, &request, &replyPtr->length);
  246.     amountWritten += replyPtr->length;
  247.     writePtr->length -= replyPtr->length;
  248.     if ((error != SUCCESS) || (replyPtr->length != toWrite)) {
  249.         return error;
  250.     }
  251.     }
  252.     replyPtr->length = amountWritten;
  253.     return(error);
  254. }
  255.  
  256. /*
  257.  *----------------------------------------------------------------------
  258.  *
  259.  * DevRawBlockDevIOControl --
  260.  *
  261.  *    Do a special operation on a raw Block Device.
  262.  *
  263.  * Results:
  264.  *    Return status of the IOControl.
  265.  *
  266.  * Side effects:
  267.  *    None.
  268.  *
  269.  *----------------------------------------------------------------------
  270.  */
  271.  
  272. /*ARGSUSED*/
  273. ReturnStatus
  274. DevRawBlockDevIOControl(devicePtr, ioctlPtr, replyPtr)
  275.     Fs_Device *devicePtr;    /* Device pointer to operate of. */
  276.     Fs_IOCParam *ioctlPtr;    /* Standard I/O Control parameter block */
  277.     Fs_IOReply *replyPtr;    /* reply length and signal */
  278. {
  279.     return Dev_BlockDeviceIOControl((DevBlockDeviceHandle *) (devicePtr->data),
  280.         ioctlPtr, replyPtr);
  281. }
  282.  
  283. /*
  284.  *----------------------------------------------------------------------
  285.  *
  286.  * DevRawBlockDevClose --
  287.  *
  288.  *    Close a raw Block Device file. If this is last open of the device
  289.  *    to be close then detach the device.
  290.  *
  291.  * Results:
  292.  *    The return status of the close operation.
  293.  *
  294.  * Side effects:
  295.  *    Block device may be detached.
  296.  *
  297.  *----------------------------------------------------------------------
  298.  */
  299. /*ARGSUSED*/
  300. ReturnStatus
  301. DevRawBlockDevClose(devicePtr, useFlags, openCount, writerCount)
  302.     Fs_Device    *devicePtr;    /* Device to close. */
  303.     int     useFlags;    /* File system useFlags. */
  304.     int        openCount;    /* Count of reference to device. */
  305.     int        writerCount;    /* Count of open writers. */
  306. {
  307.     ReturnStatus         error;    
  308.     DevBlockDeviceHandle    *handlePtr;
  309.  
  310.     if (openCount == 0) { 
  311.     handlePtr = (DevBlockDeviceHandle *) (devicePtr->data);
  312.     error = Dev_BlockDeviceRelease(handlePtr);
  313.     devicePtr->data = (ClientData) NIL;
  314.     } else {
  315.     error = SUCCESS;
  316.     }
  317.     return(error);
  318. }
  319.  
  320.